home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / macros / tip / largdp.tip < prev    next >
Text File  |  1993-09-15  |  1KB  |  43 lines

  1. % This macro source file is from the four volume series
  2. % "TeX in Practice" by Stephan von Bechtolsheim, published
  3. % 1993 by Springer-Verlag, New York.
  4. % Copyright 1993 Stephan von Bechtolsheim.
  5. % No warranty or liability is assumed.
  6. % This macro may be copied freely if no fees other than
  7. % media cost or shipping charges are charged and as long
  8. % as this copyright and the following source code itself
  9. % is not changed. Please see the series for further information.
  10. %
  11. % Version: 1.0
  12. % Date: May 1, 1993
  13. %
  14. %
  15. % This source code is documented in 3.3.15, p. I-61.
  16. % Original source in file "reg1.TEX", starting line 1742.
  17. \wlog{L: "largdp.tip" ["reg1.TEX," l. 1742, p. I-61]}%
  18. % This file DOES belong to format "texip."
  19. \InputD{valdecpo.tip}
  20. \InputD{absval.tip}
  21. \catcode`\@ = 11
  22. \newcount\@LargestDecimalPlaceCount
  23. \def\LargestDecimalPlace #1#2{%
  24.     \AbsoluteValue{#1}{\@LargestDecimalPlaceCount}%
  25.     \wlog{We make progress}%
  26.     #2 = 0
  27.     \@LargestDecimalPlaceMore{#2}%
  28. }
  29. \def\@LargestDecimalPlaceMore #1{% 
  30.     \wlog{One round: \the#1}%
  31.     \ifnum\@LargestDecimalPlaceCount < 10
  32.         \def\@LargestDecimalPlaceMoreNext{}%
  33.     \else
  34.         \advance #1 by 1
  35.         \divide\@LargestDecimalPlaceCount by 10
  36.         \def\@LargestDecimalPlaceMoreNext{%
  37.             \@LargestDecimalPlaceMore{#1}%
  38.         }%
  39.     \fi
  40.     \@LargestDecimalPlaceMoreNext
  41. }
  42. \catcode`\@ = 12
  43.